home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / idlelib / ScriptBinding.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  8KB  |  205 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. """Extension to execute code outside the Python shell window.
  5.  
  6. This adds the following commands:
  7.  
  8. - Check module does a full syntax check of the current module.
  9.   It also runs the tabnanny to catch any inconsistent tabs.
  10.  
  11. - Run module executes the module's code in the __main__ namespace.  The window
  12.   must have been saved previously. The module is added to sys.modules, and is
  13.   also added to the __main__ namespace.
  14.  
  15. XXX GvR Redesign this interface (yet again) as follows:
  16.  
  17. - Present a dialog box for ``Run Module''
  18.  
  19. - Allow specify command line arguments in the dialog box
  20.  
  21. """
  22. import os
  23. import re
  24. import string
  25. import tabnanny
  26. import tokenize
  27. import tkMessageBox
  28. import PyShell
  29. from configHandler import idleConf
  30. IDENTCHARS = string.ascii_letters + string.digits + '_'
  31. indent_message = 'Error: Inconsistent indentation detected!\n\n1) Your indentation is outright incorrect (easy to fix), OR\n\n2) Your indentation mixes tabs and spaces.\n\nTo fix case 2, change all tabs to spaces by using Edit->Select All followed by Format->Untabify Region and specify the number of columns used by each tab.\n'
  32.  
  33. class ScriptBinding:
  34.     menudefs = [
  35.         ('run', [
  36.             None,
  37.             ('Check Module', '<<check-module>>'),
  38.             ('Run Module', '<<run-module>>')])]
  39.     
  40.     def __init__(self, editwin):
  41.         self.editwin = editwin
  42.         self.flist = self.editwin.flist
  43.         self.root = self.editwin.root
  44.  
  45.     
  46.     def check_module_event(self, event):
  47.         filename = self.getfilename()
  48.         if not filename:
  49.             return None
  50.         
  51.         if not self.checksyntax(filename):
  52.             return None
  53.         
  54.         if not self.tabnanny(filename):
  55.             return None
  56.         
  57.  
  58.     
  59.     def tabnanny(self, filename):
  60.         f = open(filename, 'r')
  61.         
  62.         try:
  63.             tabnanny.process_tokens(tokenize.generate_tokens(f.readline))
  64.         except tokenize.TokenError:
  65.             msg = None
  66.             (lineno, start) = (msgtxt,)
  67.             self.editwin.gotoline(lineno)
  68.             self.errorbox('Tabnanny Tokenizing Error', 'Token Error: %s' % msgtxt)
  69.             return False
  70.         except tabnanny.NannyNag:
  71.             nag = None
  72.             self.editwin.gotoline(nag.get_lineno())
  73.             self.errorbox('Tab/space error', indent_message)
  74.             return False
  75.         except:
  76.             msg
  77.  
  78.         return True
  79.  
  80.     
  81.     def checksyntax(self, filename):
  82.         self.shell = shell = self.flist.open_shell()
  83.         saved_stream = shell.get_warning_stream()
  84.         shell.set_warning_stream(shell.stderr)
  85.         f = open(filename, 'r')
  86.         source = f.read()
  87.         f.close()
  88.         if '\r' in source:
  89.             source = re.sub('\\r\\n', '\n', source)
  90.             source = re.sub('\\r', '\n', source)
  91.         
  92.         if source and source[-1] != '\n':
  93.             source = source + '\n'
  94.         
  95.         text = self.editwin.text
  96.         text.tag_remove('ERROR', '1.0', 'end')
  97.         
  98.         try:
  99.             return compile(source, filename, 'exec')
  100.         except (SyntaxError, OverflowError):
  101.             err = None
  102.             
  103.             try:
  104.                 (errorfilename, lineno, offset, line) = (msg,)
  105.                 if not errorfilename:
  106.                     err.args = (msg, (filename, lineno, offset, line))
  107.                     err.filename = filename
  108.                 
  109.                 self.colorize_syntax_error(msg, lineno, offset)
  110.             except:
  111.                 msg = '*** ' + str(err)
  112.  
  113.             self.errorbox('Syntax error', "There's an error in your program:\n" + msg)
  114.             return False
  115.         finally:
  116.             shell.set_warning_stream(saved_stream)
  117.  
  118.  
  119.     
  120.     def colorize_syntax_error(self, msg, lineno, offset):
  121.         text = self.editwin.text
  122.         pos = '0.0 + %d lines + %d chars' % (lineno - 1, offset - 1)
  123.         text.tag_add('ERROR', pos)
  124.         char = text.get(pos)
  125.         if char and char in IDENTCHARS:
  126.             text.tag_add('ERROR', pos + ' wordstart', pos)
  127.         
  128.         if '\n' == text.get(pos):
  129.             text.mark_set('insert', pos)
  130.         else:
  131.             text.mark_set('insert', pos + '+1c')
  132.         text.see(pos)
  133.  
  134.     
  135.     def run_module_event(self, event):
  136.         """Run the module after setting up the environment.
  137.  
  138.         First check the syntax.  If OK, make sure the shell is active and
  139.         then transfer the arguments, set the run environment's working
  140.         directory to the directory of the module being executed and also
  141.         add that directory to its sys.path if not already included.
  142.  
  143.         """
  144.         filename = self.getfilename()
  145.         if not filename:
  146.             return None
  147.         
  148.         code = self.checksyntax(filename)
  149.         if not code:
  150.             return None
  151.         
  152.         if not self.tabnanny(filename):
  153.             return None
  154.         
  155.         shell = self.shell
  156.         interp = shell.interp
  157.         if PyShell.use_subprocess:
  158.             shell.restart_shell()
  159.         
  160.         dirname = os.path.dirname(filename)
  161.         interp.runcommand('if 1:\n            _filename = %r\n            import sys as _sys\n            from os.path import basename as _basename\n            if (not _sys.argv or\n                _basename(_sys.argv[0]) != _basename(_filename)):\n                _sys.argv = [_filename]\n            import os as _os\n            _os.chdir(%r)\n            del _filename, _sys, _basename, _os\n            \n' % (filename, dirname))
  162.         interp.prepend_syspath(filename)
  163.         interp.runcode(code)
  164.  
  165.     
  166.     def getfilename(self):
  167.         '''Get source filename.  If not saved, offer to save (or create) file
  168.  
  169.         The debugger requires a source file.  Make sure there is one, and that
  170.         the current version of the source buffer has been saved.  If the user
  171.         declines to save or cancels the Save As dialog, return None.
  172.  
  173.         If the user has configured IDLE for Autosave, the file will be
  174.         silently saved if it already exists and is dirty.
  175.  
  176.         '''
  177.         filename = self.editwin.io.filename
  178.         if not self.editwin.get_saved():
  179.             autosave = idleConf.GetOption('main', 'General', 'autosave', type = 'bool')
  180.             if autosave and filename:
  181.                 self.editwin.io.save(None)
  182.             else:
  183.                 reply = self.ask_save_dialog()
  184.                 self.editwin.text.focus_set()
  185.                 if reply == 'ok':
  186.                     self.editwin.io.save(None)
  187.                     filename = self.editwin.io.filename
  188.                 else:
  189.                     filename = None
  190.         
  191.         return filename
  192.  
  193.     
  194.     def ask_save_dialog(self):
  195.         msg = 'Source Must Be Saved\n' + '     ' + 'OK to Save?'
  196.         mb = tkMessageBox.Message(title = 'Save Before Run or Check', message = msg, icon = tkMessageBox.QUESTION, type = tkMessageBox.OKCANCEL, default = tkMessageBox.OK, master = self.editwin.text)
  197.         return mb.show()
  198.  
  199.     
  200.     def errorbox(self, title, message):
  201.         tkMessageBox.showerror(title, message, master = self.editwin.text)
  202.         self.editwin.text.focus_set()
  203.  
  204.  
  205.